home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / DirectShow / Capture / AudioCap / AudioCap.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-08  |  1.6 KB  |  56 lines

  1. //------------------------------------------------------------------------------
  2. // File: AudioCapDlg.cpp
  3. //
  4. // Desc: DirectShow sample code - main header file for the 
  5. //       audio capture sample application
  6. //
  7. // Copyright (c) 2000-2001 Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9.  
  10. #if !defined(AFX_AUDIOCAP_H__EC6C2C49_154B_480D_B494_B3DF7F1748F0__INCLUDED_)
  11. #define AFX_AUDIOCAP_H__EC6C2C49_154B_480D_B494_B3DF7F1748F0__INCLUDED_
  12.  
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16.  
  17. #ifndef __AFXWIN_H__
  18.     #error include 'stdafx.h' before including this file for PCH
  19. #endif
  20.  
  21. #include "resource.h"        // main symbols
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CAudioCapApp:
  25. // See AudioCap.cpp for the implementation of this class
  26. //
  27.  
  28. class CAudioCapApp : public CWinApp
  29. {
  30. public:
  31.     CAudioCapApp();
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CAudioCapApp)
  36.     public:
  37.     virtual BOOL InitInstance();
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41.  
  42.     //{{AFX_MSG(CAudioCapApp)
  43.         // NOTE - the ClassWizard will add and remove member functions here.
  44.         //    DO NOT EDIT what you see in these blocks of generated code !
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.  
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54.  
  55. #endif // !defined(AFX_AUDIOCAP_H__EC6C2C49_154B_480D_B494_B3DF7F1748F0__INCLUDED_)
  56.